home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
apptbk
/
apptbook.bas
next >
Wrap
BASIC Source File
|
1995-05-09
|
463b
|
27 lines
' Preferences
Type apptPrefs
timeStart As Variant
timeEnd As Variant
timeIncrement As Variant
End Type
Global Prefs As apptPrefs
' Constants not included elsewhere
Global Const LTGREY = &HC0C0C0
Sub Main ()
' Set up preferences and display the main form.
Prefs.timeStart = TimeValue("8:00am")
Prefs.timeEnd = TimeValue("6:00pm")
Prefs.timeIncrement = TimeValue("0:30")
ApptForm.Show
End Sub